AI-powered meeting scheduling via MCP. Let Claude check your calendar, find mutual availability across companies, and book meetings — all through natural conversation. 6 tools: get_meetings, get_contacts, get_availability, schedule_meeting, get_recommended_slots, natural_language_schedule. Works with Google Calendar and Microsoft Outlook. Free to use.
Overview
Synced Calendar MCP Server
Schedule meetings, check availability, and manage your calendar through AI conversation.
What it does
Synced's MCP server gives Claude direct access to your calendar. Instead of switching between apps, just describe what you need — Claude handles the rest.
Tools
| Tool | Purpose |
|---|---|
get_meetings | List upcoming, past, draft, or all meetings |
get_contacts | Retrieve your trusted contacts list |
get_availability | Check free/busy schedule for any date |
schedule_meeting | Create a meeting and send calendar invites |
get_recommended_slots | Find optimal mutual availability with AI |
| ranking | |
natural_language_schedule | Parse and execute freeform scheduling |
| requests |
Example
You: "Schedule a 30-minute call with sarah@designlabs.co next Tuesday"
Claude: Checks both calendars → finds the best slot → books it → sends invites to both of you.
Setup
Add to your claude_desktop_config.json:
{
"mcpServers": {
"synced-calendar": {
"command": "npx",
"args": ["-y", "@synced/mcp-server"],
"env": {
"SYNCED_API_KEY": "your-api-key"
}
}
}
}
Get your API key at https://app.meetsynced.com.
Features
- Cross-company scheduling — See availability across Google Calendar and
Microsoft Outlook
- AI-recommended slots — Finds the best time factoring in preferences and
buffer times
- Natural language — "Coffee with Alex Friday at 3pm" just works
- Calendar invites — Real invites sent to all participants automatically
- Works everywhere — Claude Desktop (stdio) and Claude.ai (SSE)
Links
- Website: https://meetsynced.com
- Docs: https://meetsynced.com/docs/integrations/ai-mcp/overview
- Tools Reference:
https://meetsynced.com/docs/integrations/ai-mcp/tools-reference
- Free tier includes full MCP access
Server Config
{
"mcpServers": {
"synced-calendar": {
"command": "npx",
"args": [
"-y",
"@synced/mcp-server"
],
"env": {
"SYNCED_API_KEY": "your-api-key"
}
}
}
}